home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / INTER52D.ZIP / GLOSSARY.LST < prev    next >
File List  |  1996-10-20  |  37KB  |  989 lines

  1. GLOSSARY            Release 52        Last change 20oct96
  2. Copyright (c) 1989,1990,1991,1992,1993,1994,1995,1996 Ralf Brown
  3.  
  4. A20
  5.     (Address line 20) The 80286 and higher CPUs allow addresses in
  6. real mode to extend slightly beyond the one megabyte mark, which causes
  7. an incompatibility with some older programs which expect such addresses
  8. to wrap back to the beginning of the address space.  For complete
  9. compatibility with the 8088, newer machines thus contain circuitry
  10. which permits the twenty-first address line (A20) to be disabled.  The
  11. CPU then effectively has only twenty address lines in real mode, just
  12. as the 8088 does, and addresses which would extend beyond the one
  13. megabyte mark wrap to the beginning of the address space.  See also
  14. High Memory Area, Real Mode.
  15.  
  16. ABIOS
  17.     (Advanced BIOS) The IBM XT/286 and PS/2 models with 80286 or
  18. higher processors contain two separate BIOSes.    The ABIOS is a
  19. protected-mode BIOS which is used by OS/2.  For machines without an
  20. ABIOS, such as the IBM AT, OS/2 loads the equivalent of the ABIOS from
  21. disk.  see also CBIOS
  22.  
  23. API
  24.     (Application Program[ming] Interface) The defined set of calls
  25. which a program may make to interact with or request services of the
  26. operating system or environment under which it is running.  Because the
  27. inputs and outputs of the calls are well-defined, a program using the
  28. API can continue using the identical calls even if the internal
  29. organization of the program providing the API changes.
  30.  
  31. APL
  32.     (A Programming Language) An interactive, mathematically-
  33. oriented language which is well-suited to manipulating matrices.
  34. Originally using greek letters and numerous special symbols, thus
  35. requiring a special display, versions are now available which use
  36. keywords in place of the special symbols.
  37.  
  38. ASCIZ
  39.     A NUL-terminated ASCII string.    The ASCIZ string "ABC" consists
  40. of the four bytes 41h, 42h, 43h, and 00h.  Unless otherwise specified,
  41. maximum lengths given in the interrupt list do not include the
  42. terminating NUL.
  43.  
  44. AVATAR
  45.     (Advanced Video Attribute Terminal Assembler and Recreator) A
  46. set of control codes which may be used to affect the output of
  47. characters to the screen on systems equipped with an appropriate
  48. driver.     Similar in intent to ANSI sequences, AVATAR has shorter
  49. command sequences and provides additional PC-specific functionality.
  50. AVATAR is primarily used by the Opus and Maximus bulletin board systems
  51. (it was designed by one of the developers of the Opus system).
  52.  
  53. BASIC
  54.     (Beginner's All-purpose Symbolic Instruction Code) A
  55. programming language originally designed as a means of teaching
  56. FORTRAN.  There are many variations of BASIC with differing
  57. capabilities; the majority are interpreted but compiled BASIC is
  58. becoming more popular.    All genuine IBM personal computers (including
  59. the latest PS/2 models) come equipped with a cassette-based BASIC
  60. interpreter in ROM.
  61.  
  62. BCD
  63.     (Binary Coded Decimal) A method of data storage where two
  64. decimal digits are stored in each byte, one in the upper four bits and
  65. the other in the lower four bits.  Since only the values 0 through 9
  66. are used in each half of a byte, BCD values can be read as decimal
  67. numbers on a hexadecimal display of memory or a file.
  68.  
  69. Big-Endian
  70.     One of the two major ways of organizing multi-byte numeric
  71. values in memory.  A big-endian layout places the most significant byte
  72. of the value in the lowest (first) memory location, i.e. 12345678h is
  73. stored as 12h 34h 56h 78h.  Motorola processors are big-endian.     Compare
  74. Little-Endian.
  75.  
  76. BIOS
  77.     (Basic Input/Output System) A set of standardized calls giving
  78. low-level access to the hardware.  The BIOS is the lowest software
  79. layer above the actual hardware and serves to insulate programs (and
  80. operating systems) which use it from the details of accessing the
  81. hardware directly.
  82.  
  83. BIOS Parameter Block
  84.     The BIOS Parameter Block stores the low-level layout of a
  85. drive.    See also INT 21h Function 53h.
  86.  
  87. Boot
  88.     To start up the computer or operating system. The term "boot"
  89. is a contraction of "bootstrap", which in turn comes from the
  90. expression "to lift oneself by one's boot straps."  The ROM BIOS on IBM
  91. PCs and compatibles reads in the first sector of the disk, which
  92. contains a short (less than 500 bytes) program that reads in a portion
  93. of the operating system, which in turn reads in the remainder of the
  94. operating system.  See also IPL.
  95.  
  96. Boot Drive
  97.     The disk drive from which the operating system was booted.  See
  98. also Boot.
  99.  
  100. BPB
  101.     see BIOS Parameter Block
  102.  
  103. Breakpoint
  104.     When debugging, a memory location which when accessed causes a
  105. break in the normal flow of execution and the invocation of the
  106. debugger.  Used to let a program run at full speed until a certain
  107. instruction is reached or (less frequently) a particular data item is
  108. accessed or changed.
  109.  
  110. Cache
  111.     Caching is a method of increasing performance by keeping
  112. frequently-used data in a location which is more quickly accessed. The
  113. most common caches are disk caches (store disk sectors in RAM) and RAM
  114. caches (store portions of main memory in special high-speed RAM which
  115. may be accessed as fast as the CPU is capable of accessing memory).
  116. See also Delayed Write, Write-Through.
  117.  
  118. Callback
  119.     A call to a specified function made by the operating system or
  120. operating environment when a request (usually an asynchronous request)
  121. completes.  This permits the calling program to continue operating while
  122. the request is processed yet still be aware of its completion
  123. immediately without the need to constantly poll the request's status.
  124. See also Callout.
  125.  
  126. Callout
  127.     A call made by the operating system, operating environment, or
  128. an application program on various events, which may be intercepted by
  129. other software which is interested in the current state of the system.
  130. See also Callback, External Device Interface.
  131.  
  132. CAS
  133.     see Communicating Applications Specification
  134.  
  135. CBIOS
  136.     (Compatibility BIOS) The IBM XT/286 and PS/2 models with 80286
  137. or higher processors contain two separate BIOSes.  The CBIOS is a
  138. real-mode BIOS which is compatible with the earlier products in the IBM
  139. PC family and PS/2 models with 8086 processors.     See also ABIOS.
  140.  
  141. CDS
  142.     see Current Directory Structure
  143.  
  144. CGA
  145.     (Color/Graphics Adapter) One of the two video display boards
  146. introduced together with the original IBM PC.  See also HGC, MDA.
  147.  
  148. Clock Tick
  149.     1/18.2 second, or approximately 55 milliseconds.  This is the
  150. rate at which the IBM PC's system clock is updated, derived by dividing
  151. 1.19 MHz (1/4 of the original PC's 4.77 MHz CPU clock) by 65536 (the
  152. highest divisor possible on the 8253/8254 timer chip).
  153.  
  154. CMOS
  155.     (Complementary Metal-Oxide-Silicon) A type of integrated
  156. circuit design known for its low power consumption.
  157.  
  158. CMOS RAM
  159.     A small amount (typically 64 or 128 bytes) of memory in the system's
  160. real-time clock chip that is preserved by the clock's battery and is used for
  161. storing configuration information.  See also Real-Time Clock.
  162.  
  163. Communicating Applications Specification
  164.     DCA and Intel's standard programmatic interface for sending and
  165. receiving FAXes via any of a number of internal FAX boards.
  166.  
  167. CP/M
  168.     (Control Program for Microcomputers) An early operating system
  169. for micros based on the 8-bit Intel 8080 CPU (and later the compatible
  170. 8085 and Zilog Z80 CPUs).  MSDOS version 1.0 was essentially a clone of
  171. CP/M for the Intel 8086.
  172.  
  173. CP/M-86
  174.     One of the three operating systems offered by IBM for its
  175. original PC (the other two were MSDOS and the UCSD p-System).  It has
  176. since evolved into DR-DOS version 6 and Novell DOS 7.
  177.  
  178. CPU
  179.     (Central Processing Unit) The microprocessor which executes
  180. programs on your computer.
  181.  
  182. Current Directory Structure
  183.     The data record used by DOS to keep track of the current
  184. directory on a drive; whether the drive is valid, network, SUBSTituted,
  185. or JOINed; and other pertinent information.  See also INT 21h Function
  186. 52h.
  187.  
  188. Cylinder
  189.     The set of concentric tracks of data located at the same
  190. position on each data-bearing surface of the disk. A double-sided
  191. floppy will contain two tracks per cylinder.
  192.  
  193. DAC
  194.     (Digital-to-Analog Converter) A hardware device (in its simplest
  195. form, nothing more than a set of interconnected resistors) which converts
  196. a digital number into an analog signal whose voltage is proportional to
  197. the value of the digital number.  VGA and later color video boards use
  198. DACs to convert color values into the analog signals sent to the display;
  199. sound boards normally use DACs as well.
  200.  
  201. DCC
  202.     (Display Combination Code) A number which indicates both the
  203. type of display adapter board and the type of monitor attached to the
  204. video board.
  205.  
  206. Delayed Write
  207.     A form of caching in which control is returned before the data is
  208. actually written to the storage media.    See also Cache, Write-Through.
  209.  
  210. Device Driver
  211.     An interface module between the device-independent portions of
  212. the operating system and an actual hardware device which converts
  213. device-independent requests into the actual sequence of device
  214. operations to perform the requested action.  IO.SYS contains the
  215. standard, built-in MSDOS device drivers such as CON, COM1, AUX, PRN,
  216. etc.  See also INT 21h Function 52h and INT 2Fh Function 0802h.
  217.  
  218. Device Driver Request Header
  219.     The data structure passed to a device driver which contains the
  220. command to be executed, its parameters, and space for a returned status
  221. and data values.  See INT 2Fh Function 0802h.
  222.  
  223. DGIS
  224.     (Direct Graphics Interface Standard)
  225.  
  226. Direct Memory Access
  227.     A method whereby peripherals may transfer data into or out of
  228. main memory without the involvement of the CPU.
  229.  
  230. Disk Transfer Address
  231.     The Disk Transfer Address indicates where functions which do
  232. not take an explicit data address will read or store data.  Although
  233. the name implies that only disk accesses use this address, other
  234. functions use it as well.  See INT 21h Function 4Eh for an example of
  235. the DTA's use.
  236.  
  237. DLL
  238.     see Dynamic Link Library
  239.  
  240. DMA
  241.     see Direct Memory Access
  242.  
  243. DOS Extender
  244.     A program which allows a program to run in protected mode while still
  245. retaining access to real-mode MSDOS services.  See also Protected Mode.
  246.  
  247. DOS Parameter List
  248.     The DOS Parameter List is used to pass arguments to SHARE and
  249. network functions.  See also INT 21h Function 5D00h.
  250.  
  251. DOS Protected-Mode Interface
  252.     An API which provides basic services for protected-mode programs to
  253. allocate memory, invoke real-mode software, etc.  See also Virtual Control
  254. Program Interface.
  255.  
  256. DOS Protected-Mode Services
  257.     An API designed by Novell (and first released with Novell DOS 7) which
  258. allows TSRs to store most of themselves outside of the first megabyte of
  259. memory.
  260.  
  261. DPB
  262.     see Drive Paramter Block
  263.  
  264. DPL
  265.     see DOS Parameter List
  266.  
  267. DPMI
  268.     see DOS Protected-Mode Interface
  269.  
  270. DPMS
  271.     see DOS Protected-Mode Services
  272.  
  273. DRAM
  274.     (Dynamic Random Access Memory) RAM memory which essentially consists
  275. of a tiny capacitor for each bit of memory.  Since capacitors do not hold
  276. a charge indefinitely, DRAM must be constantly refreshed to avoid losing
  277. its contents.  Also, the process of reading the contents of the memory are
  278. destructive, meaning extra time must be spent restoring the contents of
  279. memory addresses which are accessed, so DRAM is slower than SRAM.  See also
  280. Refresh, SRAM.
  281.  
  282. Drive Parameter Block
  283.     The DOS Drive Parameter Block stores the description of the
  284. media layout for a logical drive, as well as some housekeeping
  285. information.  See also INT 21h Function 1Fh and INT 21h Function 32h.
  286.  
  287. DTA
  288.     see Disk Transfer Address
  289.  
  290. DWORD
  291.     Doubleword; four bytes.     Commonly used to hold a 32-bit
  292. segment:offset or selector:offset address.
  293.  
  294. Dynamic Link Library
  295.     A collection of subroutines which are linked with a program at
  296. the time it is loaded into memory rather than permanently placed in the
  297. executable.  This has the advantage of allowing a single copy of the
  298. subroutine library to reside on disk or in memory even when it is used
  299. by many programs.  It also permits all programs using the DLL to be
  300. updated without recompiling simply by installing a new version of the
  301. library.
  302.  
  303. EGA
  304.     (Enhanced Graphics Adapter) IBM's second color video board for the
  305. IBM PC family, capable of a maximum resolution of 640x350 pixels in 16
  306. simultaneous colors of a total of 64 possible colors.
  307.  
  308. EISA
  309.     (Enhanced Industry-Standard Architecture) A 32-bit superset of the
  310. IBM AT's expansion bus (which is now known as the ISA or Industry-Standard
  311. Architecture bus).
  312.  
  313. EMS
  314.     see Expanded Memory Specification
  315.  
  316. EOI
  317.     (End of Interrupt) A particular command sent to the interrupt
  318. controller to indicate that the interrupt has been handled by software
  319. and that new interrupts of the same or lower priority may now be signalled
  320. by the interrupt controller.
  321.  
  322. ESDI
  323.     (Enhanced Small Device Interface) A disk drive interface type
  324. which was briefly popular before IDE took over.     An ESDI drive can
  325. transfer data between the drive and controller at 10, 15, or 20
  326. megabits per second, which is faster than an MFM or RLL controller but
  327. slower than what is possible with an IDE or SCSI drive.     See also IDE.
  328.  
  329. Exception
  330.     A signal by the CPU that some error condition has been encountered
  331. that it can not deal with without a program's intervention.  The most commonly
  332. encountered exceptions on Intel processors are Exceptions 12 and 13 (decimal,
  333. how Intel specifies exception numbers), which are stack and general problems,
  334. respectively.  Exception 13 is typically caused by a memory access which wraps
  335. from the end of a segment back to the beginning.
  336.  
  337. Expanded Memory Specification
  338.     A specification devised by Lotus, Intel, and Microsoft for
  339. accessing more than one megabyte of memory by bank-switching additional
  340. memory into the one megabyte real mode address space.
  341.  
  342. Extended BIOS Data Area
  343.     A block of memory, typically the 1K at the top of conventional
  344. memory, which is used to store additional data for use by the BIOS which
  345. does not fit into the 256-byte data area at segment 0040h.
  346.  
  347. Extended File Control Block
  348.     A DOS File Control Block which has had an additional seven
  349. bytes prepended to permit control of file attributes (which are stored
  350. in the appendage).  See also FCB.
  351.  
  352. Extended Memory
  353.     Memory beyond the one megabyte address which is available only
  354. on 80286 and higher machines.  Except for a small portion (the High
  355. Memory Area), extended memory is only accessible from protected mode.
  356.  
  357. Extended Memory Specification
  358.     A specification devised by Microsoft which allows multiple
  359. programs to share extended (above 1 megabyte) memory and noncontiguous
  360. memory above 640K.  See also Upper Memory Block.
  361.  
  362. External Device Interface
  363.     A series of calls made by the DESQview multitasker on various
  364. "interesting" events, which may be intercepted by programs which wish to
  365. keep track of the current system state.     See also Callout.
  366.  
  367. FAT
  368.     see File Allocation Table
  369.  
  370. FCB
  371.     see File Control Block
  372.  
  373. File Allocation Table
  374.     A data structure on disk that records which clusters are free,
  375. which are unusable, and which have been allocated.  The clusters occupied
  376. by a file are linked into a list in the file allocation table, allowing
  377. DOS to find the contents of the file.
  378.  
  379. File Control Block
  380.     A data record in the calling program's address space which is
  381. used by DOS 1.x functions to record the state of an open file.    See
  382. also INT 21h Function 13h.
  383.  
  384. File Handle
  385.     A small positive integer used to identify the previously-opened
  386. file on which a program wishes to perform an operation.
  387.  
  388. Flush
  389.     To force the copying of any data still stored in temporary
  390. buffers to its final destination.
  391.  
  392. FM
  393.     (Frequency Modulation)    A method of encoding data as a series of
  394. magnetic flux reversals on disk or tape, commonly known as single-density
  395. recording.  In frequency modulation, a series of clock pulses are written
  396. at regular intervals, with one data bit for each clock pulse.  See also
  397. MFM, RLL.
  398.  
  399. Formatting
  400.     Preparing a storage medium (usually magnetic media such as a
  401. disk or tape) for storing data.     Low-level or physical formatting
  402. writes all necessary housekeeping data to enable the storage device
  403. to read the media and may also initialize the storage units on the
  404. media to a known state.     High-level or logical formatting writes data
  405. used by the operating system, such as allocation information and
  406. directories onto media which has already been physically formatted.
  407. Formatting programs often perform both a low-level and a high-level
  408. format.
  409.  
  410. FOSSIL
  411.     (Fido/Opus/Seadog Standard Interface Layer)  A standardized API
  412. for performing serial I/O, originally used by the Fido and Opus bulletin-
  413. board software and Seadog bulletin-board mailer, but now in wider use.
  414.  
  415. FTP
  416.     (File Transfer Protocol)  The standard protocol for copying files
  417. from one machine to another on a TCP/IP (Internet) network.  Also the
  418. program of the same name with which a user may transfer files.
  419.  
  420. Gather-Write
  421.     see Scatter/Gather
  422.  
  423. Handle
  424.     A short identifier, usually a small integer or a pointer, for
  425. some other object which is maintained or controlled by the operating
  426. system or environment; a particular handle may be valid system-wide or
  427. may have meaning only for a particular process.     See also File Handle.
  428.  
  429. HGC
  430.     (Hercules Graphics Card) A monochrome video adapter capable
  431. of 720x352 monochrome graphics.     The HGC was the first non-IBM video
  432. adapter for the IBM PC.     See also CGA, MDA.
  433.  
  434. High Memory Area
  435.     The first 65520 bytes (64K less 16 bytes) of extended memory.
  436. This area is accessible from real mode on the 80286 and higher
  437. processors because these processors do not wrap addresses at one
  438. megabyte as the 8088 and 8086 do.  See also A20, INT 2Fh Functions
  439. 4A01h.
  440.  
  441. HMA
  442.     see High Memory Area
  443.  
  444. Horizontal Retrace
  445.     When a monitor has finished displaying a single scan line, it must
  446. move it electron beam(s) back to the left edge of the CRT, during which time
  447. it turns off the beam.    On the original CGA (and some early clones), the
  448. only time one could access the display memory without causing "snow" was
  449. during the horizontal or vertical retrace periods, as the display adapter
  450. was not itself accessing the display memory during those times.     See also
  451. Vertical Retrace.
  452.  
  453. IDE
  454.     (Integrated Drive Electronics) A type of disk drive interface
  455. which essentially extends the PC's expansion bus all the way to the
  456. drive and places the drive controller on the disk drive itself.     See
  457. also ESDI.
  458.  
  459. IFS
  460.     see Installable File System
  461.  
  462. Installable File System
  463.     An Installable File System which allows non-DOS format media to
  464. be used by DOS.     In most ways, an IFS is very similar to a networked
  465. drive, although an IFS would typically be local rather than remote.
  466. See also INT 21h Function 52h.
  467.  
  468. IP
  469.     (Internet Protocol) The lower level (transport layer) of the
  470. TCP/IP protocol suite.    See also TCP, TCP/IP.
  471.  
  472. IPC
  473.     (Inter-Process Communication) Any one of numerous methods for
  474. allowing two or more separate processes to exchange data.
  475.  
  476. IPL
  477.     (Initial Program Load) See Boot.
  478.  
  479. IPX
  480.     (Internetwork Packet Exchange) A low-level layer of Novell's
  481. NetWare networking software.
  482.  
  483. IRQ
  484.     (Interrupt ReQuest) A hardware line connected to the interrupt
  485. controller chip which signals that a CPU interrupt should be generated.
  486.  
  487. ISA
  488.     (Industry-Standard Architecture) The expansion bus used by the
  489. IBM PC/AT.  See also EISA.
  490.  
  491. JFT
  492.     see Job File Table
  493.  
  494. Job File Table
  495.     The Job File Table (also called Open File Table) stored in a
  496. program's PSP which translates handles into SFT numbers.  See also INT
  497. 21h Function 26h.
  498.  
  499. LCD
  500.     (Liquid Crystal Display)
  501.  
  502. List of Lists
  503.     An internal DOS table of lists and other tables through which
  504. most DOS-internal data structures may be reached.  See INT 21h Function
  505. 52h.
  506.  
  507. Little-Endian
  508.     One of the two major ways of organizing multi-byte numeric
  509. values in memory.  A little-endian layout places the least significant
  510. byte of the value in the lowest (first) memory location, i.e. 12345678h
  511. is stored as 78h 56h 34h 12h.  Intel processors are little-endian.
  512. Compare Big-Endian.
  513.  
  514. LPT
  515.     Abbreviation for Line PrinTer.
  516.  
  517. MCB
  518.     see Memory Control Block
  519.  
  520. MCGA
  521.     (Multi-Color Graphics Array) The low-end color adapter offered
  522. in IBM's early PS/2 series machines.
  523.  
  524. MDA
  525.     (Monochrome Display Adapter) A text-only video adapter introduced
  526. together with the original IBM PC.  See also CGA, HGC.
  527.  
  528. Memory Control Block
  529.     The data structure containing the length and owner (among other
  530. things) of a portion of the memory managed by DOS.  See INT 21h
  531. Function 52h.
  532.  
  533. MFM
  534.     (Modified Frequency Modulation) A method of encoding data as a
  535. series of magnetic flux reversals on disk or tape, commonly known as
  536. double-density recording.  In contrast to FM, modified frequency
  537. modulation omits all clock pulses except those between pairs of zero
  538. bits.  See also FM, RLL.
  539.  
  540. Mickey
  541.     The smallest increment of motion a mouse can sense.
  542.  
  543. MIDI
  544.     (Musical Instrument Digital Interface) A standardized interface
  545. for controlling musical instruments with a computer.
  546.  
  547. Modem
  548.     (contraction of MOdulator/DEModulator)
  549.  
  550. MSR
  551.     (Model-Specific Register) Additional, indirectly-accessible,
  552. registers containing control or status information about various
  553. aspects of the processor such as caches, performance counters, and the
  554. like.    These registers, accessible via the RDMSR and WRMSR
  555. instructions, were added with the Pentium and later-model 486
  556. processors.
  557.  
  558. Multitasking
  559.     Any of a number of methods by which multiple programs may
  560. execute concurrently, with rapid switching between the programs giving
  561. the appearance that all are executing simultaneously.
  562.  
  563. MZ
  564.     The letters M and Z appear in numerous places in DOS (memory
  565. control blocks, .EXE header, etc.); the conventional explanation is
  566. that these are the initials of Mark Zbikowski, one of the principal
  567. architects of MSDOS 2.0.
  568.  
  569. NCB
  570.     see Network Control Block
  571.  
  572. NDIS
  573.     (Network Driver Interface Specification) A hardware-independent
  574. network interface developed by Microsoft and 3com.  See also Packet
  575. Driver, TCP/IP.
  576.  
  577. NetBIOS
  578.     One of a number of low-level device-independent network
  579. interfaces; the other major interfaces are Novell's IPX and the
  580. Internet's IP (Internet Protocol, the lower-level portion of TCP/IP).
  581.  
  582. Network Control Block
  583.     A Network Control Block used to pass requests to NetBIOS and
  584. receive status information from the NetBIOS handler.
  585.  
  586. Network Redirector
  587.     A program which permits access to network devices (disks,
  588. printers, etc.) using the MSDOS kernel network redirector interface.
  589. See also Network Shell, Redirector Interface.
  590.  
  591. Network Shell
  592.     A program which permits access to network devices (disks,
  593. printers, etc.) by intercepting DOS calls before they reach the DOS
  594. kernel and handling those operating on network devices while passing
  595. through actions on local devices.  See also Network Redirector.
  596.  
  597. NMI
  598.     see Non-Maskable Interrupt
  599.  
  600. Non-Maskable Interrupt
  601.     An interrupt which can not be disabled by clearing the CPU's
  602. interrupt enable flag, unlike most normal interrupts.  Non-maskable
  603. interrupts are typically used to signal calamities which require
  604. immediate action, such as a hardware failure or imminent loss of power.
  605.  
  606. Non-Volatile RAM
  607.     Memory which can be modified like normal RAM but does not lose
  608. its contents when the system's power is turned off. This memory may be
  609. powered by a battery when the system power if off, or it may be a type
  610. of memory which does not need electricity to maintain its contents,
  611. such as EEPROM or bubble memory.
  612.  
  613. NVRAM
  614.     see Non-Volatile RAM
  615.  
  616. ODI
  617.     (Open Data-link Interface) A hardware-independent network
  618. interface developed by Novell, Inc.  See also NDIS, Packet Driver.
  619.  
  620. OEM
  621.     (Original Equipment Manufacturer) a company which purchases
  622. components that are resold as part of its own products under the company's
  623. own brand name, e.g. a Gateway 2000-branded monitor may actually be a Mag
  624. or NEC monitor.
  625.  
  626. Open File Table
  627.     see Job File Table
  628.  
  629. Overscan Area
  630.     The "border" between the edge of the area where graphics or text can
  631. be displayed and the actual edge of the area the video adapter can illuminate
  632. on the monitor's screen.
  633.  
  634. Overscan Register
  635.     On a display adapter, the control register which specifies the color
  636. to be displayed in the overscan area.
  637.  
  638. Packet Driver
  639.     Any one of the numerous drivers conforming to FTP Software's
  640. Packet Driver Specification, which provides a hardware-independent
  641. network interface.  See also NDIS, ODI.
  642.  
  643. Page Fault
  644.     A CPU-generated signal, and the operating system's reaction to it,
  645. generated when a program accesses a page of virtual memory which is not
  646. located in RAM at the time.  The operating system's response is to load in
  647. the required page, possibly writing some other page out to disk in order
  648. to make room.  See also INT 0E in INTERRUP.LST.
  649.  
  650. Page Register
  651.     A peripheral register or I/O port used to extend the addressing
  652. range of some other register or I/O port.  The prime example are
  653. the DMA page registers, which allow the DMA controller to address
  654. more than 64K (since the DMA controller only contains 16 address
  655. lines; this is the cause of the 64K DMA boundaries).
  656.  
  657. Palette Register
  658.     A memory location on the video controller which specifies the actual
  659. color displayed for a particular color number.
  660.  
  661. Park
  662.     To move a hard disk's read/write heads to a position in which
  663. it is safe to turn off the power and transport the disk drive.    Many
  664. drives also lock the heads into position when they are parked,
  665. providing additional protection from sudden movement.
  666.  
  667. Pel
  668.     see Pixel
  669.  
  670. Pixel
  671.     A picture element, the smallest addressable unit of a graphical
  672. display.
  673.  
  674. Post
  675.     Make known, either generally or to a specific handler, that a
  676. particular event of interest has occurred.
  677.  
  678. POST
  679.     see Power-On Self-Test
  680.  
  681. Power-On Self-Test
  682.     A brief examination of the system's functionality performed
  683. each time the system is turned on.
  684.  
  685. Print Spooler
  686.     see SPOOL.
  687.  
  688. Program Segment Prefix
  689.     The Program Segment Prefix is a 256-byte data area prepended to
  690. a program when it is loaded.  It contains the command line that the
  691. program was invoked with, and a variety of housekeeping information for
  692. DOS.  See also INT 21h Function 26h.
  693.  
  694. Protected Mode
  695.     One of the operating modes of the 80286 and higher Intel
  696. processors, in which addresses used by programs no longer correspond to
  697. physical addresses and the CPU enforces various protection mechanisms
  698. designed to prevent one program from disrupting other programs or the
  699. operating system.  See also Real Mode, Virtual-86 Mode.
  700.  
  701. PSP
  702.     see Program Segment Prefix
  703.  
  704. PWORD
  705.     Six bytes.  Used to hold an 80386 protected-mode "far" address,
  706. consisting of a segment selector and a 32-bit offset, or a Turbo Pascal
  707. "real" variable.  See also DWORD, QWORD.
  708.  
  709. QWORD
  710.     (quad-word) Eight bytes.  See also DWORD, PWORD.
  711.  
  712. RAM
  713.     (Random Access Memory)    See also DRAM, SRAM.
  714.  
  715. Real Mode
  716.     One of the operating modes of the 80286 and higher Intel
  717. processors, and the only operating mode of the 8088, 8086, 80186, and
  718. 80188 processors.  In this mode, all addresses used by programs
  719. correspond directly to real physical addresses (thus the full name,
  720. Real Address Mode) and there are no CPU-imposed protections between
  721. programs.  See also Protected Mode, Virtual-86 Mode.
  722.  
  723. Real-Time Clock
  724.     A battery-powered clock which continues to maintain its time even
  725. while the system is powered down.  On PCs, the real-time clock contains a
  726. small amount of battery-powered memory (set CMOS RAM).
  727.  
  728. Redirector Interface
  729.     The set of device-independent INT 2Fh function calls invoked by
  730. the MSDOS kernel to operate on devices it recognizes as network
  731. devices.  These function calls provide a lower-level interface than the
  732. INT 21h calls made to DOS, allowing a program intercepting these
  733. functions to be simpler than one intercepting INT 21h calls.  See INT
  734. 2Fh Functions 1100h through 1130h.
  735.  
  736. Refresh
  737.     The process of periodically rewriting the contents of a DRAM
  738. memory chip to keep it from fading.  The term "refresh" is also commonly
  739. applied to redrawing the image on a CRT's phosphors.   See also DRAM.
  740.  
  741. RGB
  742.     (Red-Green-Blue) The color specification mechanism normally
  743. used in computer displays, where colors are separated into their
  744. primary-color components.  See also YUV.
  745.  
  746. RLL
  747.     (Run-Length Limited) A method of encoding data as a series of
  748. magnetic flux reversals on disk or tape.  RLL can achieve higher data
  749. densities than MFM recording because it encodes the data such that
  750. (on average), fewer than one flux reversal per data bit is required
  751. (however, timing becomes more critical).  RLL is actually an entire
  752. family of encoding methods, specified with two numbers indicating the
  753. minimum and maximum distances between one bits (flux transitions).  The
  754. variant normally called RLL is RLL-2,7; RLL-1,7 and RLL-3,9 are also in
  755. use.  MFM is in effect RLL-1,3.     See also FM, MFM.
  756.  
  757. ROM
  758.     (Read-Only Memory) A memory for program storage which may not be
  759. changed by the program as it runs.
  760.  
  761. RTC
  762.     see Real-Time Clock
  763.  
  764. Scan Code
  765.     The actual key number sent by the keyboard, which differs from the
  766. key codes seen by application programs.     The enhanced (101/102-key) keyboard
  767. actually sends different scan codes than the original (83/84-key) IBM
  768. keyboard, but these are normally translated by the keyboard controller into
  769. the scan codes used by the original keyboard before they become visible to
  770. programs.
  771.  
  772. Scatter/Gather
  773.     A technique in which the contiguous data of a disk sector or sectors
  774. is transferred to or from multiple non-contiguous areas of memory.  When
  775. reading into multiple areas of memory, this is called a scatter-read; the
  776. opposing operation is called gather-write.
  777.  
  778. Scatter-Read
  779.     see Scatter/Gather
  780.  
  781. SCSI
  782.     (Small Computer Systems Interface) A system-independent
  783. expansion bus typically used to connect hard disks, tape drives, and
  784. CD-ROMs to a computer.    A host adapter connects the SCSI bus to the
  785. computer's own bus.  See also ESDI, IDE.
  786.  
  787. SDA
  788.     see Swappable Data Area
  789.  
  790. Sector
  791.     The smallest addressable unit of data on a disk; under MS-DOS,
  792. this is normally 512 bytes.  See also Track.
  793.  
  794. SFT
  795.     see System File Table
  796.  
  797. SMM
  798.     (System Management Mode) A special CPU mode typically invoked
  799. on changes in power-supply status.  In this mode, additional hidden
  800. memory becomes available for storing the CPU's state and a control
  801. program to deal with the needs of power management or other critical
  802. events.
  803.  
  804. SPOOL
  805.     (Simultaneous Peripheral Operation OnLine)  The process of
  806. performing output to a slow peripheral such as a printer while other
  807. tasks continue running on the CPU.  This term dates back to mainframe
  808. days before the invention of timesharing.
  809.  
  810. SQL
  811.     (Structured Query Language)
  812.  
  813. SRAM
  814.     (Static Random Access Memory)  RAM which typically consists of one
  815. flip-flop per bit of memory.  Unlike DRAMs, static RAM retains its contents
  816. as long as power is applied.  Because there is no need to refresh the
  817. contents of memory addresses which are read, SRAM is faster than DRAM,
  818. but it is more expensive and typically is available in much smaller sizes
  819. than DRAM because each bit occupies more space on the chip.  See also DRAM.
  820.  
  821. SVGA
  822.     (Super VGA) A video adapter capable of higher resolution
  823. (pixels and/or colors) than the 320x200x256 and 640x480x16 which IBM's
  824. VGA adapter is capable of producing.  See also VESA.
  825.  
  826. Swappable Data Area
  827.     The portion of the DOS data segment containing all of the
  828. variables used internally by DOS to record the state of a function call
  829. in progress.  See also INT 21h Function 5D06h and INT 21h Function
  830. 5D0Bh.
  831.  
  832. System File Table
  833.     A System File Table is a DOS-internal data structure used to
  834. maintain the state of an open file for the DOS 2+ handle functions,
  835. just as an FCB maintains the state for DOS 1.x functions.  See also INT
  836. 21h Function 52h.
  837.  
  838. TCP
  839.     (Transmission Control Protocol) A higher level (session layer)
  840. of the TCP/IP protocol suite.  See also IP, TCP/IP.
  841.  
  842. TCP/IP
  843.     The protocol suite originally developed by DARPA for use on its
  844. ARPAnet network, which is now known as the Internet.  See also IP, TCP.
  845.  
  846. TSR
  847.     (Terminate and Stay Resident) A program which remains in memory
  848. after terminating in order to provide services to other programs or the
  849. user.  The name comes from the name of the DOS function call used to
  850. remain in memory after termination.
  851.  
  852. Track
  853.     One of multiple concentric circular rings of data on a single
  854. data-bearing surface of a disk.     Tracks at the same location on
  855. different surfaces form a cylinder.
  856.  
  857. UMB
  858.     see Upper Memory Block
  859.  
  860. UNC
  861.     (Universal Naming Convention) The standard way of describing
  862. network servers and their directories under MS-DOS and Windows NT.  A
  863. name in UNC format consists of two backslashes followed by the server
  864. name, optionally followed by another backslash and a list of
  865. backslash-separated fields; for example
  866. \\SERVER1\SHARED-DIR\SUBDIR1\SUBDIR2\FILENAME.EXT.
  867.  
  868. Upper Memory Block
  869.     A noncontiguous section of allocatable memory located between
  870. the 640K and 1024K addresses.  See also INT 21h Function 52h.
  871.  
  872. V86
  873.     see Virtual-86 Mode
  874.  
  875. VCPI
  876.     see Virtual Control Program Interface
  877.  
  878. VDM
  879.     see Virtual DOS Machine
  880.  
  881. VDS
  882.     see Virtual DMA Specification
  883.  
  884. VDU
  885.     (Video Display Unit)  Mainframe-speak for computer monitor.
  886.  
  887. Vertical Retrace
  888.     When a monitor has finished displaying an image by sweeping its
  889. electron beam(s) over the face of the CRT, it has to move the beam back up
  890. to the top of the display.  During the time this takes, the beam is turned
  891. off.  The vertical retrace interval is a good time to change the displayed
  892. picture for smooth animation.  See also Horizontal Retrace.
  893.  
  894. VESA
  895.     (Video Electronics Standards Association)  An industry group
  896. which sets both hardware and software standards and recommendations.
  897. The term VESA is also used to denote compliance with the VESA SuperVGA
  898. BIOS Extensions, a standard set of video BIOS functions for accessing
  899. video modes of higher resolution than those defined by IBM.
  900.  
  901. VGA
  902.     (Video Graphics Array) The video adapter introduced with the
  903. IBM PS/2 series of computers.
  904.  
  905. Virtual-86 Mode
  906.     One of the operating modes of the 80386 and 80486 processors in
  907. which user programs run as if the CPU were in Real Mode, while
  908. providing the protection and address-mapping capabilities of Protected
  909. Mode to a supervisor program which oversees the virtual machine on
  910. which the user programs are running.  This mode is called Virtual-86
  911. because one or more virtual 8086 environments are run on a single CPU.
  912. See also Protected Mode, Real Mode, Virtual Machine.
  913.  
  914. Virtual Control Program Interface
  915.     A simple API for protected-mode programs to allocate memory and
  916. switch into or out of protected mode.  See also DOS Protected-Mode Interface.
  917.  
  918. Virtual DMA Specification
  919.     A set of interrupt calls which permit the use of DMA even on
  920. systems running in protected or Virtual-86 mode with their address
  921. remapping, or systems such as Micro Channel PS/2s with multiple bus
  922. masters independently performing DMA operations.
  923.  
  924. Virtual DOS Machine
  925.     A special type of virtual machine provided by OS/2 version 2.0,
  926. in which a copy of MS-DOS or an MS-DOS compatible operating system (or
  927. even an incompatible 8086 operating system) is run and appears to have
  928. full control of the system.  See also Virtual Machine, INT 21h Function
  929. 64h.
  930.  
  931. Virtual Machine
  932.     One method for multitasking programs is to virtualize the CPU
  933. and other hardware, giving the appearance of sole possession of the
  934. system to each program being run.  Such a virtualized environment is
  935. called a virtual machine.  See also Virtual-86 Mode, Virtual DOS
  936. Machine.
  937.  
  938. virus
  939.     A program which attaches itself to other programs for the purpose
  940. of duplicating itself.    Viruses often (but not always) contain harmful
  941. code which is triggered by some event, after a certain number of
  942. reproductions, or on a specific date.  See also worm.
  943.  
  944. VM
  945.     see Virtual Machine
  946.  
  947. VxD
  948.     A virtual device driver for Windows 3.0 or 3.1.     See also
  949. device driver.
  950.  
  951. WORM
  952.     (Write Once, Read Many)     A storage medium which may be written
  953. exactly once, but may not be altered once data is stored.
  954.  
  955. worm
  956.     A program which duplicates itself, typically across networks.
  957. In contrast to a virus, a worm does not attach itself to other programs,
  958. but can reproduce itself independently.     See also virus.
  959.  
  960. Write-Through
  961.     One of two main types of caches, the write-through cache immediately
  962. writes any new information to the medium it is caching, so that the cache
  963. never contains information which is not already present on the cached device.
  964. See also cache,
  965.  
  966. XBDA
  967.     see Extended BIOS Data Area
  968.  
  969. XDI
  970.     see External Device Interface
  971.  
  972. XGA
  973.     (Extended Graphics Array)
  974.  
  975. XMS
  976.     see Extended Memory Specification
  977.  
  978. YIQ
  979.     see YUV
  980.  
  981. YUV
  982.     A color specification mechanism used in NTSC-type color
  983. television signals.  Y represents luminance (overall brightness, the
  984. only part of the signal used by black-and-white televisions), while U
  985. and V are chrominance (color) information.  Also called YIQ.  See also
  986. RGB.
  987.  
  988.                   --- end of file ---
  989.